home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_096 / animplayer / copyright.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  1KB  |  62 lines

  1. /***********************************************************************
  2.  *
  3.  *   NAME
  4.  *      Copyright -- display Hashnique copyright notice on screen
  5.  *
  6.  *   SYNOPSIS
  7.  *      Copyright( rastport );
  8.  *
  9.  *      struct RastPort *rastport;
  10.  *
  11.  *   copyright (c) 1987 Martin D. Hash
  12.  *
  13.  *    ******************************
  14.  *       RETAIN THIS FILE AS IS
  15.  *      ******************************
  16.  *
  17.  *   DESCRIPTION
  18.  *      An Image is used to create the copyright notice.
  19.  *
  20.  *   LAST EDITED
  21.  *    Martin Hash            20 Apr 1987
  22.  *
  23.  *   EDIT HISTORY
  24.  *      31 Dec 1986  MH  Created.
  25.  *
  26.  **********************************************************************/
  27.  
  28. #include <exec/types.h>
  29. #include <intuition/intuition.h>
  30.  
  31. /* FILE VARIABLES */
  32.  
  33. static UWORD copyright_data[] = {
  34.    0x3840, 0x0800, 0x0000,
  35.    0x4440, 0x0808, 0x0000,
  36.    0x9263, 0x2CC1, 0xA900,
  37.    0xA255, 0x4AAA, 0xAA80,
  38.    0x9255, 0x2AAA, 0xAB80,
  39.    0x4453, 0x4AA9, 0x9200,
  40.    0x3800, 0x0000, 0x8100,
  41.    0x0000, 0x0000, 0x4000
  42. };
  43.  
  44. static struct Image copyright_image = {
  45.    0, 1,
  46.    48, 8, 1,
  47.    copyright_data,
  48.    0x2, 0x0,
  49.    NULL
  50. };
  51.  
  52. /* FUNCTION */
  53.  
  54. void Copyright( rastport )
  55.  
  56. struct RastPort *rastport;
  57. {
  58.    DrawImage( rastport, ©right_image, 300, 220 );
  59. }
  60.    
  61.  
  62.